home *** CD-ROM | disk | FTP | other *** search
/ Next Step: Mars? / Next Step Mars (1994)(IVI).iso / advgrab.dir / 00070_Script_70 < prev    next >
Text File  |  1994-11-28  |  3KB  |  138 lines

  1. on Checkkey1T
  2.   if the key = RETURN then
  3.     when keydown then nothing
  4.     if field "passwordbox1" contains "GAGARIN" then
  5.       go to frame "greenGlowT"
  6.     else
  7.       go to frame "nopassT"
  8.     end if
  9.   end if
  10. end CheckKey1T
  11.  
  12. on Checkkey2T
  13.   if the key = RETURN then
  14.     when keydown then nothing
  15.     if field "passwordbox2" contains "KOROLEV" then
  16.       go to frame "yellowGlowT"
  17.     else
  18.       go to frame "nopassT"
  19.     end if
  20.   end if
  21. end CheckKey2T
  22.  
  23. on Checkkey3T
  24.   if the key = RETURN then
  25.     when keydown then nothing
  26.     if field "passwordbox3" contains "VON BRAUN" then
  27.       go to frame "hotGlowT"
  28.     else
  29.       go to frame "nopassT"
  30.     end if
  31.   end if
  32. end CheckKey3T
  33.  
  34.  
  35. on Checkkey1E
  36.   if the key = RETURN then
  37.     when keydown then nothing
  38.     if field "passwordbox1" contains "GAGARIN" then
  39.       go to frame "GreenGlowE"
  40.     else
  41.       go to frame "nopassE"
  42.     end if
  43.   end if
  44. end CheckKey1E
  45.  
  46. on Checkkey2E
  47.   if the key = RETURN then
  48.     when keydown then nothing
  49.     if field "passwordbox2" contains "KOROLEV" then
  50.       go to frame "yellowGlowE"
  51.     else
  52.       go to frame "nopassE"
  53.     end if
  54.   end if
  55. end CheckKey2E
  56.  
  57. on Checkkey3E
  58.   if the key = RETURN then
  59.     when keydown then nothing
  60.     if field "passwordbox3" contains "VON BRAUN" then
  61.       go to frame "hotGlowE"
  62.     else
  63.       go to frame "nopassE"
  64.     end if
  65.   end if
  66. end CheckKey3E
  67.  
  68. on Checkkey1P
  69.   if the key = RETURN then
  70.     when keydown then nothing
  71.     if field "passwordbox1" contains "GAGARIN" then
  72.       go to frame "greenGlowP"
  73.     else
  74.       go to frame "nopassP"
  75.     end if
  76.   end if
  77. end CheckKey1P
  78.  
  79. on Checkkey2P
  80.   if the key = RETURN then
  81.     when keydown then nothing
  82.     if field "passwordbox2" contains "KOROLEV" then
  83.       go to frame "yellowGlowP"
  84.     else
  85.       go to frame "nopassP"
  86.     end if
  87.   end if
  88. end CheckKey2P
  89.  
  90. on Checkkey3P
  91.   if the key = RETURN then
  92.     when keydown then nothing
  93.     if field "passwordbox3" contains "VON BRAUN" then
  94.       go to frame "hotGlowP"
  95.     else
  96.       go to frame "nopassP"
  97.     end if
  98.   end if
  99. end CheckKey3P
  100.  
  101. on Checkkey1A
  102.   if the key = RETURN then
  103.     when keydown then nothing
  104.     if field "passwordbox1" contains "GAGARIN" then
  105.       go to frame "greenGlowA"
  106.     else
  107.       go to frame "nopassA"
  108.     end if
  109.   end if
  110. end CheckKey1A
  111.  
  112. on Checkkey2A
  113.   if the key = RETURN then
  114.     when keydown then nothing
  115.     if field "passwordbox2" contains "KOROLEV" then
  116.       go to frame "yellowGlowA"
  117.     else
  118.       go to frame "nopassA"
  119.     end if
  120.   end if
  121. end CheckKey2A
  122.  
  123. on Checkkey3A
  124.   if the key = RETURN then
  125.     when keydown then nothing
  126.     if field "passwordbox3" contains "VON BRAUN" then
  127.       go to frame "hotGlowA"
  128.     else
  129.       go to frame "nopassA"
  130.     end if
  131.   end if
  132. end CheckKey3A
  133.  
  134.  
  135.  
  136.  
  137.  
  138.